home *** CD-ROM | disk | FTP | other *** search
/ Eagles Nest BBS 1 / Eagles_Nest_Mac_Collection_Disc_1.TOAST / System & Related / UNIXNut#2 / Basics / card_14228.txt < prev    next >
Text File  |  1989-06-19  |  1KB  |  46 lines

  1. -- card: 14228 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 6154
  5. -- name: Moving Files
  6.  
  7.  
  8. -- part 1 (field)
  9. -- low flags: 01
  10. -- high flags: 0000
  11. -- rect: left=122 top=253 right=338 bottom=322
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 22
  16. -- text size: 10
  17. -- style flags: 0
  18. -- line height: 13
  19. -- part name: 
  20.  
  21.  
  22. -- part contents for background part 7
  23. ----- text -----
  24. Basic Tasks
  25.  
  26. -- part contents for background part 21
  27. ----- text -----
  28. Moving Files
  29.  
  30. -- part contents for background part 8
  31. ----- text -----
  32. The mv* command can also be used to actually move a file from one directory to another directory.  After using this command, the file no longer exists in its original directory.   The mv command has exactly the same syntax as the cp command.  You must specify the pathname of the existing file followed by the pathname or filename that you want to assign to it.  As with the cp* command, if the destination file is to have the same name as the file you want to move, then only the name of the destination directory need be supplied. 
  33. In this example, a file is moved from the current directory to the bin directory off of Sam's home directory.
  34.  
  35.  
  36. -- part contents for card part 1
  37. ----- text -----
  38. $ mv program.c /usr/samuel/bin
  39. $ ls program.c
  40. $
  41. $ ls /usr/samuel/bin
  42. /usr/samuel/bin/program.c
  43.  
  44. -- part contents for background part 9
  45. ----- text -----
  46. 42 of 63